home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 7_8.lha / 7_8 / makefile < prev    next >
Makefile  |  1993-08-08  |  259b  |  20 lines

  1. C= CC -I. -I../../CC
  2. FLAGS=
  3.  
  4. ll: tst
  5.  
  6. st: tst.o
  7. $(CC) -o tst tst.o
  8.  
  9. st.o: tst.c 7_8decl.h 7_8a1.h 7_8a2.h 7_8a3.h 7_8a4.h 7_8a5.h
  10. $(CC) -c tst.c
  11.  
  12. MP= tst.cmp
  13. UT= tst.out
  14.  
  15. st.out: tst ; tst > tst.out
  16.  
  17. est: all $(CMP) $(OUT)
  18. cmp tst.out tst.cmp
  19. @echo test done
  20.